博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
从首页问答标题到问答详情页
阅读量:5079 次
发布时间:2019-06-12

本文共 1830 字,大约阅读时间需要 6 分钟。

1.主PY文件写视图函数,带id参数。 

@app.route('/detail/<question_id>')
def detail(question_id):
    quest = 
    return render_template('detail.html', ques = quest)
@app.route('/detail/
')def detail(question_id): quest=Question.query.filter(Question.id==question_id).first() return render_template('detail.html',ques=quest)

2.首页标题的标签做带参数的链接。

      {
{ url_for('detail',question_id = foo.id) }}

{% for foo in questions %}            
  • {
    { foo.author.username }}
    {
    { foo.title }}
    发布时间:{
    { foo.creat_time }}

    {

    { foo.detail }}

  • {
    % endfor %}

    3.在详情页将数据的显示在恰当的位置。 

    {
    { ques.title}}
    {
    { ques.id  }}{
    {  ques.creat_time }}
    {
    { ques.author.username }} 
    {
    { ques.detail }}

    {

    { ques.detail }}



    4.建立评论的对象关系映射:

    class Comment(db.Model):

        __tablename__='comment'

    class Comment(db.Model):    __tablename__='comment'    id=db.Column(db.Integer, primary_key=True, autoincrement=True)    author_id = db.Column(db.Integer,db.ForeignKey('user.id'))    question_id = db.Column(db.Integer,db.ForeignKey('question.id'))    creat_time = db.Column(db.DateTime, default=datetime.now)    detail=db.Column(db.Text,nullable=False)    question=db.relationship('Question',backref=db.backref('comments'))    author=db.relationship('User',backref=db.backref('comments'))

    转载于:https://www.cnblogs.com/lwn-blog/p/7992789.html

    你可能感兴趣的文章
    python语句----->if语句,while语句,for循环
    查看>>
    javascript之数组操作
    查看>>
    LinkedList源码分析
    查看>>
    TF-IDF原理
    查看>>
    用JS制作博客页面背景随滚动渐变的效果
    查看>>
    JavaScript的迭代函数与迭代函数的实现
    查看>>
    一步步教你学会browserify
    查看>>
    Jmeter入门实例
    查看>>
    亲近用户—回归本质
    查看>>
    中文脏话识别的解决方案
    查看>>
    CSS之不常用但重要的样式总结
    查看>>
    Python编译错误总结
    查看>>
    URL编码与解码
    查看>>
    日常开发时遇到的一些坑(三)
    查看>>
    Eclipse 安装SVN插件
    查看>>
    深度学习
    查看>>
    TCP粘包问题及解决方案
    查看>>
    构建之法阅读笔记02
    查看>>
    添加按钮
    查看>>
    移动端页面开发适配 rem布局原理
    查看>>